b26df9f012568fe1d6997e06d05c78570db21a3e,components/camel-quartz2/src/main/java/org/apache/camel/component/quartz2/QuartzComponent.java,QuartzComponent,createSchedulerFactory,#,122
Before Change
// camel context name will be a suffix to use one scheduler per context
String identity = getCamelContext().getManagementName();
String instName = prop.getProperty(StdSchedulerFactory.PROP_SCHED_INSTANCE_NAME);
if (instName == null) {
instName = "scheduler-" + identity;
} else {
After Change
// camel context name will be a suffix to use one scheduler per context
String instName = createInstanceName(prop);
prop.setProperty(StdSchedulerFactory.PROP_SCHED_INSTANCE_NAME, instName);
// enable jmx unless configured to not do so
if (enableJmx && !prop.containsKey("org.quartz.scheduler.jmx.export")) {